37fdf462777e60cd5e1ab5ab71ebfa4b70eead52,platform/platform-impl/src/com/intellij/ui/DropDownPanel.java,ButtonLabel,paintComponent,#Graphics#,105

Before Change


    public void paintComponent(Graphics g) {
      ActionButtonLook.IDEA_LOOK.paintBackground(g, this);
      ActionButtonLook.IDEA_LOOK.paintBorder(g, this);
      super.paintComponent(g);
      if (myLine) {
        g.setColor(GroupedElementsRenderer.POPUP_SEPARATOR_FOREGROUND);
        Icon icon = getIcon();

After Change



    @Override
    public void paintComponent(Graphics g) {
      super.paintComponent(g);
      ActionButtonLook.IDEA_LOOK.paintBackground(g, this);
      ActionButtonLook.IDEA_LOOK.paintBorder(g, this);
    }